@import url("./nav.css");
@import url("./footer.css");
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html, body{
    height: 100%;
    width: 100%;
}

.main-desk{
    height: max-content;
    width: 100%;
    padding:10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction:row;
    align-items: center;
    justify-content:space-evenly;
    box-shadow: 1px 1px 10px 1px gray;
    margin-bottom:10px;
    background-color: #47474717;

}

.pritext{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
    /* background-color: aqua; */
    box-shadow: -12px -9px 0px 0px #002147;
    width:530px;
    height:max-content;
    padding: 10px;
}

.pritext p{
    
    /* font-weight: bold; */
    font-size: 17px;
    font-family:"Rubik", Sans-serif;
    
}

.primg{
    height:420px;
    width:500px;
    box-shadow:12px 9px 0px 0px #002147;
    padding-top:10px;
    padding-left:12px;
    


}

.primg img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}




